home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 7 / BBS in a Box - Macintosh - Volume VII (BBS in a Box) (January 1993).iso / Files / Hyper / P / Portfolio.cpt / Home / background_26436.txt < prev    next >
Text File  |  1988-01-24  |  30KB  |  1,297 lines

  1. -- background: 26436 from stack: in
  2. -- bmap block id: 13604
  3. -- flags: 4000
  4. -- background id: 0
  5. -- name: A-Z & Folders
  6. ----- HyperTalk script -----
  7. ------------------------------------------------------------------------
  8. -- IDLE
  9. ------------------------------------------------------------------------
  10.  
  11. On idle
  12.   Put the time into background field "Time"
  13.   Put the size of this stack into background field "StackSize"
  14.   Put the freesize of this stack into background field "Wasted"
  15.   Pass idle
  16. End idle
  17.  
  18. ------------------------------------------------------------------------
  19. -- OPEN CARD
  20. ------------------------------------------------------------------------
  21.  
  22. On OpenCard
  23.   Global Action
  24.   Put "Launch" into action
  25.   Show MenuBar
  26.   Hide message window
  27.   Put the time into background field "Time"
  28.   Put the abbreviated date into background field "Date"
  29.   Put the size of this stack into background field "StackSize"
  30.   Put the freesize of this stack into background field "Wasted"
  31.   If background field 1 = empty then
  32.     Get line 1 of background field 1 of previous card
  33.     Put it into background field 1
  34.   End if
  35.   If background field 2 = empty then
  36.     Get item 1 of background field 2 of previous card
  37.     Add 1 to it
  38.     Put it into background field 2
  39.   End if
  40. End OpenCard
  41.  
  42. ------------------------------------------------------------------------
  43. -- MOUSEWITHIN + OPTION KEY
  44. ------------------------------------------------------------------------
  45.  
  46. On MouseWithin
  47.   If the OptionKey is down then
  48.     Put the MouseLoc into MyPlace
  49.     Global ShortName
  50.     Set LockScreen to true
  51.     Set UserLevel to 5
  52.     Choose button tool
  53.     Click at MyPlace
  54.     Get short name of the target
  55.     Put it into ShortName
  56.     If it = "Portfolio" or it = "System" or it = "Add..."or it = "About" or it = "Prev" or it = "Next" or it = "Back" or it = "A" or it = "B" or it = "C" or it = "D" or it = "E" or it = "F" or it = "G" or it = "H" or it = "I" or it = "J" or it = "K" or it = "L" or it = "M" or it = "N" or it = "O" or it = "P" or it = "Q" or it = "R" or it = "S" or it = "T" or it = "U" or it = "V" or it = "W" or it = "X" or it = "Y" or it = "Z" or it = "Compact" or it = "Page Number" then
  57.       Beep 2
  58.       Answer "Sorry, that button is protected!" with "OK"
  59.       Choose browse tool
  60.       Set LockScreen to false
  61.       Exit MouseWithin
  62.     End if
  63.     Show message window at 20,302
  64.     Put "Current Selection - "
  65.     Put it into word 7 of message window
  66.     -- NAME OF BACKGROUND FIELD IS ( LIST )
  67.     Put background field list into TheList
  68.     DoList "Select","Cancel",TheList,one
  69.     Get the result
  70.     ----------------------------------------------------------------------
  71.     -- REMOVE BUTTON
  72.     ----------------------------------------------------------------------
  73.     If item 2 of it = "Remove From Card" then
  74.       RemoveButton
  75.       Exit MouseWithin
  76.     End if
  77.     ----------------------------------------------------------------------
  78.     -- RENAME BUTTON
  79.     ----------------------------------------------------------------------
  80.     If item 2 of it ="Rename On Card & Disk" then
  81.       RenameFileButton
  82.       Exit MouseWithin
  83.     End if
  84.     ----------------------------------------------------------------------
  85.     -- DELETE BUTTON
  86.     ----------------------------------------------------------------------
  87.     If item 2 of it ="Remove From Card & Disk" then
  88.       DeleteFileButton
  89.       Exit MouseWithin
  90.     End if
  91.  
  92.     Choose browse tool
  93.     Put""
  94.     Set LockScreen to false
  95.     Hide message window
  96.  
  97.   End if
  98. End MouseWithin
  99.  
  100. ------------------------------------------------------------------------
  101. -- MOVE BUTTON
  102. ------------------------------------------------------------------------
  103.  
  104. On MouseDown
  105.   If the CommandKey is down then
  106.     Global Action
  107.     Put "Abort" into action
  108.     Get short name of the target
  109.     If it = "Portfolio" or it = "System" or it = "Add..."or it = "About" or it = "Prev" or it = "Next" or it = "Back" or it = "A" or it = "B" or it = "C" or it = "D" or it = "E" or it = "F" or it = "G" or it = "H" or it = "I" or it = "J" or it = "K" or it = "L" or it = "M" or it = "N" or it = "O" or it = "P" or it = "Q" or it = "R" or it = "S" or it = "T" or it = "U" or it = "V" or it = "W" or it = "X" or it = "Y" or it = "Z" or it = "Compact" or it = "Page Number" then
  110.       Beep 2
  111.       Answer "Select a button or that button is protected!" with "OK"
  112.       Choose browse tool
  113.       Set LockScreen to false
  114.       Exit MouseDown
  115.     End if
  116.     Choose button tool
  117.     Repeat until the mouse is up
  118.       Set the loc of target to the MouseLoc
  119.     End repeat
  120.     Choose browse tool
  121.     Hide message window
  122.   End if
  123. End MouseDown
  124.  
  125.  
  126.  
  127.  
  128. -- part 52 (button)
  129. -- low flags: 00
  130. -- high flags: 2000
  131. -- rect: left=489 top=34 right=47 bottom=512
  132. -- title width / last selected line: 0
  133. -- icon id / first selected line: 0 / 0
  134. -- text alignment: 1
  135. -- font id: 0
  136. -- text size: 12
  137. -- style flags: 0
  138. -- line height: 16
  139. -- part name: A
  140. ----- HyperTalk script -----
  141. on mouseUp
  142.   Global Action
  143.   If Action = "Abort" then
  144.     Put "Launch" into action
  145.     Exit MouseUp
  146.   End if
  147.   visual effect barn door open
  148.   go to card id 26629
  149. end mouseUp
  150.  
  151.  
  152.  
  153.  
  154. -- part 53 (button)
  155. -- low flags: 00
  156. -- high flags: 2000
  157. -- rect: left=489 top=46 right=58 bottom=512
  158. -- title width / last selected line: 0
  159. -- icon id / first selected line: 0 / 0
  160. -- text alignment: 1
  161. -- font id: 0
  162. -- text size: 12
  163. -- style flags: 0
  164. -- line height: 16
  165. -- part name: B
  166. ----- HyperTalk script -----
  167. on mouseUp
  168.   Global Action
  169.   If Action = "Abort" then
  170.     Put "Launch" into action
  171.     Exit MouseUp
  172.   End if
  173.   visual effect barn door open
  174.   go to card id 3863
  175. end mouseUp
  176.  
  177.  
  178.  
  179.  
  180. -- part 54 (button)
  181. -- low flags: 00
  182. -- high flags: 2000
  183. -- rect: left=489 top=57 right=69 bottom=512
  184. -- title width / last selected line: 0
  185. -- icon id / first selected line: 0 / 0
  186. -- text alignment: 1
  187. -- font id: 0
  188. -- text size: 12
  189. -- style flags: 0
  190. -- line height: 16
  191. -- part name: C
  192. ----- HyperTalk script -----
  193. on mouseUp
  194.   Global Action
  195.   If Action = "Abort" then
  196.     Put "Launch" into action
  197.     Exit MouseUp
  198.   End if
  199.   visual effect barn door open
  200.   go to card id 4915
  201. end mouseUp
  202.  
  203.  
  204.  
  205.  
  206. -- part 55 (button)
  207. -- low flags: 00
  208. -- high flags: 2000
  209. -- rect: left=489 top=68 right=80 bottom=512
  210. -- title width / last selected line: 0
  211. -- icon id / first selected line: 0 / 0
  212. -- text alignment: 1
  213. -- font id: 0
  214. -- text size: 12
  215. -- style flags: 0
  216. -- line height: 16
  217. -- part name: D
  218. ----- HyperTalk script -----
  219. on mouseUp
  220.   Global Action
  221.   If Action = "Abort" then
  222.     Put "Launch" into action
  223.     Exit MouseUp
  224.   End if
  225.   visual effect barn door open
  226.   go to card id 6228
  227. end mouseUp
  228.  
  229.  
  230.  
  231.  
  232. -- part 57 (button)
  233. -- low flags: 00
  234. -- high flags: 2000
  235. -- rect: left=489 top=79 right=91 bottom=512
  236. -- title width / last selected line: 0
  237. -- icon id / first selected line: 0 / 0
  238. -- text alignment: 1
  239. -- font id: 0
  240. -- text size: 12
  241. -- style flags: 0
  242. -- line height: 16
  243. -- part name: E
  244. ----- HyperTalk script -----
  245. on mouseUp
  246.   Global Action
  247.   If Action = "Abort" then
  248.     Put "Launch" into action
  249.     Exit MouseUp
  250.   End if
  251.   visual effect barn door open
  252.   go to card id 6788
  253. end mouseUp
  254.  
  255.  
  256.  
  257.  
  258. -- part 58 (button)
  259. -- low flags: 00
  260. -- high flags: 2000
  261. -- rect: left=489 top=90 right=102 bottom=512
  262. -- title width / last selected line: 0
  263. -- icon id / first selected line: 0 / 0
  264. -- text alignment: 1
  265. -- font id: 0
  266. -- text size: 12
  267. -- style flags: 0
  268. -- line height: 16
  269. -- part name: F
  270. ----- HyperTalk script -----
  271. on mouseUp
  272.   Global Action
  273.   If Action = "Abort" then
  274.     Put "Launch" into action
  275.     Exit MouseUp
  276.   End if
  277.   visual effect barn door open
  278.   go to card id 7102
  279. end mouseUp
  280.  
  281.  
  282.  
  283.  
  284. -- part 59 (button)
  285. -- low flags: 00
  286. -- high flags: 2000
  287. -- rect: left=489 top=101 right=113 bottom=512
  288. -- title width / last selected line: 0
  289. -- icon id / first selected line: 0 / 0
  290. -- text alignment: 1
  291. -- font id: 0
  292. -- text size: 12
  293. -- style flags: 0
  294. -- line height: 16
  295. -- part name: G
  296. ----- HyperTalk script -----
  297. on mouseUp
  298.   Global Action
  299.   If Action = "Abort" then
  300.     Put "Launch" into action
  301.     Exit MouseUp
  302.   End if
  303.   visual effect barn door open
  304.   go to card id 7447
  305. end mouseUp
  306.  
  307.  
  308.  
  309.  
  310. -- part 60 (button)
  311. -- low flags: 00
  312. -- high flags: 2000
  313. -- rect: left=489 top=112 right=124 bottom=512
  314. -- title width / last selected line: 0
  315. -- icon id / first selected line: 0 / 0
  316. -- text alignment: 1
  317. -- font id: 0
  318. -- text size: 12
  319. -- style flags: 0
  320. -- line height: 16
  321. -- part name: H
  322. ----- HyperTalk script -----
  323. on mouseUp
  324.   Global Action
  325.   If Action = "Abort" then
  326.     Put "Launch" into action
  327.     Exit MouseUp
  328.   End if
  329.   visual effect barn door open
  330.   go to card id 7695
  331. end mouseUp
  332.  
  333.  
  334.  
  335.  
  336. -- part 61 (button)
  337. -- low flags: 00
  338. -- high flags: 2000
  339. -- rect: left=489 top=123 right=135 bottom=512
  340. -- title width / last selected line: 0
  341. -- icon id / first selected line: 0 / 0
  342. -- text alignment: 1
  343. -- font id: 0
  344. -- text size: 12
  345. -- style flags: 0
  346. -- line height: 16
  347. -- part name: I
  348. ----- HyperTalk script -----
  349. On MouseUp
  350.   Global Action
  351.   If Action = "Abort" then
  352.     Put "Launch" into action
  353.     Exit MouseUp
  354.   End if
  355.   Visual effect barn door open
  356.   Go to card id 8142
  357. End MouseUp
  358.  
  359.  
  360.  
  361. -- part 62 (button)
  362. -- low flags: 00
  363. -- high flags: 2000
  364. -- rect: left=489 top=134 right=146 bottom=512
  365. -- title width / last selected line: 0
  366. -- icon id / first selected line: 0 / 0
  367. -- text alignment: 1
  368. -- font id: 0
  369. -- text size: 12
  370. -- style flags: 0
  371. -- line height: 16
  372. -- part name: J
  373. ----- HyperTalk script -----
  374. on mouseUp
  375.   Global Action
  376.   If Action = "Abort" then
  377.     Put "Launch" into action
  378.     Exit MouseUp
  379.   End if
  380.   visual effect barn door open
  381.   go to card id 8255
  382. end mouseUp
  383.  
  384.  
  385.  
  386.  
  387. -- part 63 (button)
  388. -- low flags: 00
  389. -- high flags: 2000
  390. -- rect: left=489 top=145 right=157 bottom=512
  391. -- title width / last selected line: 0
  392. -- icon id / first selected line: 0 / 0
  393. -- text alignment: 1
  394. -- font id: 0
  395. -- text size: 12
  396. -- style flags: 0
  397. -- line height: 16
  398. -- part name: K
  399. ----- HyperTalk script -----
  400. on mouseUp
  401.   Global Action
  402.   If Action = "Abort" then
  403.     Put "Launch" into action
  404.     Exit MouseUp
  405.   End if
  406.   visual effect barn door open
  407.   go to card id 8566
  408. end mouseUp
  409.  
  410.  
  411.  
  412.  
  413. -- part 64 (button)
  414. -- low flags: 00
  415. -- high flags: 2000
  416. -- rect: left=489 top=156 right=168 bottom=512
  417. -- title width / last selected line: 0
  418. -- icon id / first selected line: 0 / 0
  419. -- text alignment: 1
  420. -- font id: 0
  421. -- text size: 12
  422. -- style flags: 0
  423. -- line height: 16
  424. -- part name: L
  425. ----- HyperTalk script -----
  426. on mouseUp
  427.   Global Action
  428.   If Action = "Abort" then
  429.     Put "Launch" into action
  430.     Exit MouseUp
  431.   End if
  432.   visual effect barn door open
  433.   go to card id 8878
  434. end mouseUp
  435.  
  436.  
  437.  
  438.  
  439. -- part 65 (button)
  440. -- low flags: 00
  441. -- high flags: 2000
  442. -- rect: left=489 top=167 right=180 bottom=512
  443. -- title width / last selected line: 0
  444. -- icon id / first selected line: 0 / 0
  445. -- text alignment: 1
  446. -- font id: 0
  447. -- text size: 12
  448. -- style flags: 0
  449. -- line height: 16
  450. -- part name: M
  451. ----- HyperTalk script -----
  452. on mouseUp
  453.   Global Action
  454.   If Action = "Abort" then
  455.     Put "Launch" into action
  456.     Exit MouseUp
  457.   End if
  458.   visual effect barn door open
  459.   go to card id 8984
  460. end mouseUp
  461.  
  462.  
  463.  
  464.  
  465. -- part 66 (button)
  466. -- low flags: 00
  467. -- high flags: 2000
  468. -- rect: left=489 top=179 right=191 bottom=512
  469. -- title width / last selected line: 0
  470. -- icon id / first selected line: 0 / 0
  471. -- text alignment: 1
  472. -- font id: 0
  473. -- text size: 12
  474. -- style flags: 0
  475. -- line height: 16
  476. -- part name: N
  477. ----- HyperTalk script -----
  478. on mouseUp
  479.   Global Action
  480.   If Action = "Abort" then
  481.     Put "Launch" into action
  482.     Exit MouseUp
  483.   End if
  484.   visual effect barn door open
  485.   go to card id 9571
  486. end mouseUp
  487.  
  488.  
  489.  
  490.  
  491. -- part 67 (button)
  492. -- low flags: 00
  493. -- high flags: 2000
  494. -- rect: left=489 top=190 right=202 bottom=512
  495. -- title width / last selected line: 0
  496. -- icon id / first selected line: 0 / 0
  497. -- text alignment: 1
  498. -- font id: 0
  499. -- text size: 12
  500. -- style flags: 0
  501. -- line height: 16
  502. -- part name: O
  503. ----- HyperTalk script -----
  504. on mouseUp
  505.   Global Action
  506.   If Action = "Abort" then
  507.     Put "Launch" into action
  508.     Exit MouseUp
  509.   End if
  510.   visual effect barn door open
  511.   go to card id 9912
  512. end mouseUp
  513.  
  514.  
  515.  
  516.  
  517. -- part 68 (button)
  518. -- low flags: 00
  519. -- high flags: 2000
  520. -- rect: left=489 top=200 right=212 bottom=512
  521. -- title width / last selected line: 0
  522. -- icon id / first selected line: 0 / 0
  523. -- text alignment: 1
  524. -- font id: 0
  525. -- text size: 12
  526. -- style flags: 0
  527. -- line height: 16
  528. -- part name: P
  529. ----- HyperTalk script -----
  530. on mouseUp
  531.   Global Action
  532.   If Action = "Abort" then
  533.     Put "Launch" into action
  534.     Exit MouseUp
  535.   End if
  536.   visual effect barn door open
  537.   go to card id 10366
  538. end mouseUp
  539.  
  540.  
  541.  
  542.  
  543. -- part 69 (button)
  544. -- low flags: 00
  545. -- high flags: 2000
  546. -- rect: left=489 top=211 right=223 bottom=512
  547. -- title width / last selected line: 0
  548. -- icon id / first selected line: 0 / 0
  549. -- text alignment: 1
  550. -- font id: 0
  551. -- text size: 12
  552. -- style flags: 0
  553. -- line height: 16
  554. -- part name: Q
  555. ----- HyperTalk script -----
  556. on mouseUp
  557.   Global Action
  558.   If Action = "Abort" then
  559.     Put "Launch" into action
  560.     Exit MouseUp
  561.   End if
  562.   visual effect barn door open
  563.   go to card id 10817
  564. end mouseUp
  565.  
  566.  
  567.  
  568.  
  569. -- part 70 (button)
  570. -- low flags: 00
  571. -- high flags: 2000
  572. -- rect: left=489 top=222 right=234 bottom=512
  573. -- title width / last selected line: 0
  574. -- icon id / first selected line: 0 / 0
  575. -- text alignment: 1
  576. -- font id: 0
  577. -- text size: 12
  578. -- style flags: 0
  579. -- line height: 16
  580. -- part name: R
  581. ----- HyperTalk script -----
  582. on mouseUp
  583.   Global Action
  584.   If Action = "Abort" then
  585.     Put "Launch" into action
  586.     Exit MouseUp
  587.   End if
  588.   visual effect barn door open
  589.   go to card id 11084
  590. end mouseUp
  591.  
  592.  
  593.  
  594.  
  595. -- part 71 (button)
  596. -- low flags: 00
  597. -- high flags: 2000
  598. -- rect: left=489 top=233 right=245 bottom=512
  599. -- title width / last selected line: 0
  600. -- icon id / first selected line: 0 / 0
  601. -- text alignment: 1
  602. -- font id: 0
  603. -- text size: 12
  604. -- style flags: 0
  605. -- line height: 16
  606. -- part name: S
  607. ----- HyperTalk script -----
  608. on mouseUp
  609.   Global Action
  610.   If Action = "Abort" then
  611.     Put "Launch" into action
  612.     Exit MouseUp
  613.   End if
  614.   visual effect barn door open
  615.   go to card id 11472
  616. end mouseUp
  617.  
  618.  
  619.  
  620.  
  621. -- part 72 (button)
  622. -- low flags: 00
  623. -- high flags: 2000
  624. -- rect: left=489 top=244 right=256 bottom=512
  625. -- title width / last selected line: 0
  626. -- icon id / first selected line: 0 / 0
  627. -- text alignment: 1
  628. -- font id: 0
  629. -- text size: 12
  630. -- style flags: 0
  631. -- line height: 16
  632. -- part name: T
  633. ----- HyperTalk script -----
  634. on mouseUp
  635.   Global Action
  636.   If Action = "Abort" then
  637.     Put "Launch" into action
  638.     Exit MouseUp
  639.   End if
  640.   visual effect barn door open
  641.   go to card id 11586
  642. end mouseUp
  643.  
  644.  
  645.  
  646.  
  647. -- part 73 (button)
  648. -- low flags: 00
  649. -- high flags: 2000
  650. -- rect: left=489 top=255 right=267 bottom=512
  651. -- title width / last selected line: 0
  652. -- icon id / first selected line: 0 / 0
  653. -- text alignment: 1
  654. -- font id: 0
  655. -- text size: 12
  656. -- style flags: 0
  657. -- line height: 16
  658. -- part name: U
  659. ----- HyperTalk script -----
  660. on mouseUp
  661.   Global Action
  662.   If Action = "Abort" then
  663.     Put "Launch" into action
  664.     Exit MouseUp
  665.   End if
  666.   visual effect barn door open
  667.   go to card id 11818
  668. end mouseUp
  669.  
  670.  
  671.  
  672.  
  673. -- part 74 (button)
  674. -- low flags: 00
  675. -- high flags: 2000
  676. -- rect: left=489 top=266 right=278 bottom=512
  677. -- title width / last selected line: 0
  678. -- icon id / first selected line: 0 / 0
  679. -- text alignment: 1
  680. -- font id: 0
  681. -- text size: 12
  682. -- style flags: 0
  683. -- line height: 16
  684. -- part name: V
  685. ----- HyperTalk script -----
  686. on mouseUp
  687.   Global Action
  688.   If Action = "Abort" then
  689.     Put "Launch" into action
  690.     Exit MouseUp
  691.   End if
  692.   visual effect barn door open
  693.   go to card id 12215
  694. end mouseUp
  695.  
  696.  
  697.  
  698.  
  699. -- part 75 (button)
  700. -- low flags: 00
  701. -- high flags: 2000
  702. -- rect: left=489 top=277 right=289 bottom=512
  703. -- title width / last selected line: 0
  704. -- icon id / first selected line: 0 / 0
  705. -- text alignment: 1
  706. -- font id: 0
  707. -- text size: 12
  708. -- style flags: 0
  709. -- line height: 16
  710. -- part name: W
  711. ----- HyperTalk script -----
  712. on mouseUp
  713.   Global Action
  714.   If Action = "Abort" then
  715.     Put "Launch" into action
  716.     Exit MouseUp
  717.   End if
  718.   visual effect barn door open
  719.   go to card id 12364
  720. end mouseUp
  721.  
  722.  
  723.  
  724.  
  725. -- part 76 (button)
  726. -- low flags: 00
  727. -- high flags: 2000
  728. -- rect: left=489 top=288 right=300 bottom=512
  729. -- title width / last selected line: 0
  730. -- icon id / first selected line: 0 / 0
  731. -- text alignment: 1
  732. -- font id: 0
  733. -- text size: 12
  734. -- style flags: 0
  735. -- line height: 16
  736. -- part name: X
  737. ----- HyperTalk script -----
  738. on mouseUp
  739.   Global Action
  740.   If Action = "Abort" then
  741.     Put "Launch" into action
  742.     Exit MouseUp
  743.   End if
  744.   visual effect barn door open
  745.   go to card id 12614
  746. end mouseUp
  747.  
  748.  
  749.  
  750.  
  751. -- part 77 (button)
  752. -- low flags: 00
  753. -- high flags: 2000
  754. -- rect: left=489 top=299 right=311 bottom=512
  755. -- title width / last selected line: 0
  756. -- icon id / first selected line: 0 / 0
  757. -- text alignment: 1
  758. -- font id: 0
  759. -- text size: 12
  760. -- style flags: 0
  761. -- line height: 16
  762. -- part name: Y
  763. ----- HyperTalk script -----
  764. on mouseUp
  765.   Global Action
  766.   If Action = "Abort" then
  767.     Put "Launch" into action
  768.     Exit MouseUp
  769.   End if
  770.   visual effect barn door open
  771.   go to card id 13003
  772. end mouseUp
  773.  
  774.  
  775.  
  776.  
  777. -- part 78 (button)
  778. -- low flags: 00
  779. -- high flags: 2000
  780. -- rect: left=489 top=310 right=323 bottom=512
  781. -- title width / last selected line: 0
  782. -- icon id / first selected line: 0 / 0
  783. -- text alignment: 1
  784. -- font id: 0
  785. -- text size: 12
  786. -- style flags: 0
  787. -- line height: 16
  788. -- part name: Z
  789. ----- HyperTalk script -----
  790. on mouseUp
  791.   Global Action
  792.   If Action = "Abort" then
  793.     Put "Launch" into action
  794.     Exit MouseUp
  795.   End if
  796.   visual effect barn door open
  797.   go to card id 13155
  798. end mouseUp
  799.  
  800.  
  801.  
  802.  
  803. -- part 84 (button)
  804. -- low flags: 00
  805. -- high flags: 2004
  806. -- rect: left=66 top=298 right=319 bottom=91
  807. -- title width / last selected line: 0
  808. -- icon id / first selected line: 16560 / 16560
  809. -- text alignment: 1
  810. -- font id: 0
  811. -- text size: 12
  812. -- style flags: 0
  813. -- line height: 16
  814. -- part name: Next
  815. ----- HyperTalk script -----
  816. on mouseUp
  817.   Global Action
  818.   If Action = "Abort" then
  819.     Put "Launch" into action
  820.     Exit MouseUp
  821.   End if
  822.   visual effect barn door open
  823.   go to next card
  824. end mouseUp
  825.  
  826.  
  827.  
  828. -- part 85 (button)
  829. -- low flags: 00
  830. -- high flags: 2004
  831. -- rect: left=38 top=298 right=319 bottom=63
  832. -- title width / last selected line: 0
  833. -- icon id / first selected line: 15420 / 15420
  834. -- text alignment: 1
  835. -- font id: 0
  836. -- text size: 12
  837. -- style flags: 0
  838. -- line height: 16
  839. -- part name: Prev
  840. ----- HyperTalk script -----
  841. on mouseUp
  842.   Global Action
  843.   If Action = "Abort" then
  844.     Put "Launch" into action
  845.     Exit MouseUp
  846.   End if
  847.   visual effect barn door open
  848.   go to previous card
  849. end mouseUp
  850.  
  851.  
  852.  
  853. -- part 98 (button)
  854. -- low flags: 00
  855. -- high flags: 2004
  856. -- rect: left=38 top=114 right=151 bottom=91
  857. -- title width / last selected line: 0
  858. -- icon id / first selected line: 27056 / 27056
  859. -- text alignment: 1
  860. -- font id: 0
  861. -- text size: 12
  862. -- style flags: 0
  863. -- line height: 16
  864. -- part name: Add...
  865. ----- HyperTalk script -----
  866. On MouseDown
  867.   Put the MouseLoc into MyPlace
  868.   Put item 1 of myPlace + 5 into horiz
  869.   Put item 2 of myPlace - 5 into vert
  870.   Get PopUpMenu("Add HyperCard Stack...;-;Add Application...;"& "-;Add Document...;-;Add Desk Accessory...",0, vert, horiz)
  871.   Set hilite of background button "Add..." to false
  872.   If it < "1" then
  873.     Exit MouseDown
  874.   End if
  875.   Show MenuBar
  876.   Set LockScreen to true
  877.   Set the UserLevel to 5
  878.   ----------------------------------------------------------------------
  879.   -- ADD HYPERCARD STACK
  880.   ----------------------------------------------------------------------
  881.   If it = "1" then
  882.     AddStack
  883.   End if
  884.   ----------------------------------------------------------------------
  885.   -- ADD APPLICATION
  886.   ----------------------------------------------------------------------
  887.   If it = "3" then
  888.     AddApplication
  889.   End if
  890.   ----------------------------------------------------------------------
  891.   -- ADD DOCUMENT
  892.   ----------------------------------------------------------------------
  893.   If it = "5" then
  894.     AddDocument
  895.   End if
  896.   ----------------------------------------------------------------------
  897.   -- ADD DA
  898.   ----------------------------------------------------------------------
  899.   If it = "7" then
  900.     AddDA
  901.   End if
  902. End MouseDown
  903.  
  904.  
  905.  
  906.  
  907. -- part 101 (field)
  908. -- low flags: 01
  909. -- high flags: 0000
  910. -- rect: left=238 top=32 right=45 bottom=411
  911. -- title width / last selected line: 0
  912. -- icon id / first selected line: 0 / 0
  913. -- text alignment: 0
  914. -- font id: 3
  915. -- text size: 9
  916. -- style flags: 0
  917. -- line height: 12
  918. -- part name: Card:
  919.  
  920.  
  921. -- part 102 (field)
  922. -- low flags: 01
  923. -- high flags: 0000
  924. -- rect: left=455 top=32 right=45 bottom=484
  925. -- title width / last selected line: 0
  926. -- icon id / first selected line: 0 / 0
  927. -- text alignment: 0
  928. -- font id: 3
  929. -- text size: 9
  930. -- style flags: 0
  931. -- line height: 12
  932. -- part name: Page:
  933.  
  934.  
  935. -- part 105 (field)
  936. -- low flags: 01
  937. -- high flags: 0000
  938. -- rect: left=238 top=46 right=59 bottom=339
  939. -- title width / last selected line: 0
  940. -- icon id / first selected line: 0 / 0
  941. -- text alignment: 0
  942. -- font id: 3
  943. -- text size: 9
  944. -- style flags: 0
  945. -- line height: 12
  946. -- part name: StackSize
  947.  
  948.  
  949. -- part 106 (field)
  950. -- low flags: 01
  951. -- high flags: 0000
  952. -- rect: left=238 top=60 right=73 bottom=339
  953. -- title width / last selected line: 0
  954. -- icon id / first selected line: 0 / 0
  955. -- text alignment: 0
  956. -- font id: 3
  957. -- text size: 9
  958. -- style flags: 0
  959. -- line height: 12
  960. -- part name: Wasted
  961.  
  962.  
  963. -- part 107 (field)
  964. -- low flags: 01
  965. -- high flags: 0000
  966. -- rect: left=387 top=46 right=59 bottom=484
  967. -- title width / last selected line: 0
  968. -- icon id / first selected line: 0 / 0
  969. -- text alignment: 0
  970. -- font id: 3
  971. -- text size: 9
  972. -- style flags: 0
  973. -- line height: 12
  974. -- part name: Time
  975.  
  976.  
  977. -- part 108 (field)
  978. -- low flags: 01
  979. -- high flags: 0000
  980. -- rect: left=387 top=60 right=73 bottom=484
  981. -- title width / last selected line: 0
  982. -- icon id / first selected line: 0 / 0
  983. -- text alignment: 0
  984. -- font id: 3
  985. -- text size: 9
  986. -- style flags: 0
  987. -- line height: 12
  988. -- part name: Date
  989.  
  990.  
  991. -- part 111 (button)
  992. -- low flags: 00
  993. -- high flags: 2000
  994. -- rect: left=101 top=60 right=73 bottom=177
  995. -- title width / last selected line: 0
  996. -- icon id / first selected line: 0 / 0
  997. -- text alignment: 1
  998. -- font id: 0
  999. -- text size: 12
  1000. -- style flags: 0
  1001. -- line height: 16
  1002. -- part name: Compact
  1003. ----- HyperTalk script -----
  1004. on mouseUp
  1005.   Global Action
  1006.   If Action = "Abort" then
  1007.     Put "Launch" into action
  1008.     Exit MouseUp
  1009.   End if
  1010.   if freesize of this stack > 0 then
  1011.     doMenu Compact Stack
  1012.   end if
  1013. end mouseUp
  1014.  
  1015.  
  1016.  
  1017. -- part 112 (button)
  1018. -- low flags: 00
  1019. -- high flags: 2004
  1020. -- rect: left=38 top=74 right=111 bottom=91
  1021. -- title width / last selected line: 0
  1022. -- icon id / first selected line: 26405 / 26405
  1023. -- text alignment: 1
  1024. -- font id: 0
  1025. -- text size: 12
  1026. -- style flags: 0
  1027. -- line height: 16
  1028. -- part name: System
  1029. ----- HyperTalk script -----
  1030. On MouseDown
  1031.   Put the MouseLoc into MyPlace
  1032.   Put item 1 of myPlace + 5 into horiz
  1033.   Put item 2 of myPlace - 5 into vert
  1034.   Get PopUpMenu("Launch Application...;-;Delete A File...;"& "Rename A File...;-;Quit Portfolio;-;Shut Down",0, vert, horiz)
  1035.   Set hilite of background button "System" to false
  1036.   If it < "1" then
  1037.     Exit MouseDown
  1038.   End if
  1039.   ----------------------------------------------------------------------
  1040.   -- DIRECT LAUNCH
  1041.   ----------------------------------------------------------------------
  1042.   If it = "1" then
  1043.     DirectLaunch
  1044.   End if
  1045.   ----------------------------------------------------------------------
  1046.   -- DELETE A FILE
  1047.   ----------------------------------------------------------------------
  1048.   If it = "3" then
  1049.     TrashAny
  1050.   End if
  1051.   ----------------------------------------------------------------------
  1052.   -- RENAME A FILE
  1053.   ----------------------------------------------------------------------
  1054.   If it = "4" then
  1055.     RenameAny
  1056.   End if
  1057.   ----------------------------------------------------------------------
  1058.   -- QUIT
  1059.   ----------------------------------------------------------------------
  1060.   If it = "6" then
  1061.     DoMenu Quit HyperCard
  1062.   End if
  1063.   ----------------------------------------------------------------------
  1064.   -- SHUT DOWN
  1065.   ----------------------------------------------------------------------
  1066.   If it = "8" then
  1067.     ShutOff
  1068.   End if
  1069. End MouseDown
  1070.  
  1071.  
  1072.  
  1073.  
  1074.  
  1075. -- part 115 (button)
  1076. -- low flags: 00
  1077. -- high flags: 2004
  1078. -- rect: left=38 top=34 right=71 bottom=91
  1079. -- title width / last selected line: 0
  1080. -- icon id / first selected line: 3479 / 3479
  1081. -- text alignment: 1
  1082. -- font id: 0
  1083. -- text size: 12
  1084. -- style flags: 0
  1085. -- line height: 16
  1086. -- part name: Portfolio
  1087. ----- HyperTalk script -----
  1088. On MouseDown
  1089.   Put the MouseLoc into MyPlace
  1090.   Put item 1 of MyPlace + 5 into horiz
  1091.   Put item 2 of MyPlace - 5 into vert
  1092.   Get PopUpMenu("Portfolio \ Home Card;-;"& "User Preferences...;PathWay Structures...;-;Scan All Cards...;-;"& "Accounting;Communications;Database Management;"& "Desktop Publishing;Graphics;Ideas;Music \ Sounds;SpreadSheets;"& "Utilities;Word Processing",0, vert, horiz)
  1093.   Set hilite of background button "Portfolio" to false
  1094.   If it < "1" then
  1095.     Exit MouseDown
  1096.   End if
  1097.   ----------------------------------------------------------------------
  1098.   -- HOME CARD
  1099.   ----------------------------------------------------------------------
  1100.   If it = 1 then
  1101.     Visual effect barn door open
  1102.     Go to card id 5341
  1103.   End if
  1104.   ----------------------------------------------------------------------
  1105.   -- USER PREFERENCES
  1106.   ----------------------------------------------------------------------
  1107.   If it = 3 then
  1108.     Visual effect barn door open
  1109.     Go to card id 3012
  1110.   End if
  1111.   ----------------------------------------------------------------------
  1112.   -- PATHWAY STRUCTURES
  1113.   ----------------------------------------------------------------------
  1114.   If it = 4 then
  1115.     Visual effect barn door open
  1116.     Go to card id 5437
  1117.   End if
  1118.   ----------------------------------------------------------------------
  1119.   -- SCAN ALL CARDS
  1120.   ----------------------------------------------------------------------
  1121.   If it = 6 then
  1122.     ScanCards
  1123.   End if
  1124.   ----------------------------------------------------------------------
  1125.   -- ACCOUNTING
  1126.   ----------------------------------------------------------------------
  1127.   If it = 8 then
  1128.     Visual effect barn door open
  1129.     Go to card id 13370
  1130.   End if
  1131.   ----------------------------------------------------------------------
  1132.   -- COMMUNICATIONS
  1133.   ----------------------------------------------------------------------
  1134.   If it = 9 then
  1135.     Visual effect barn door open
  1136.     Go to card id 13960
  1137.   End if
  1138.   ----------------------------------------------------------------------
  1139.   -- DATABASE MANAGEMENT
  1140.   ----------------------------------------------------------------------
  1141.   If it = 10 then
  1142.     Visual effect barn door open
  1143.     Go to card id 4691
  1144.   End if
  1145.   ----------------------------------------------------------------------
  1146.   -- DESKTOP PUBLISHING
  1147.   ----------------------------------------------------------------------
  1148.   If it = 11 then
  1149.     Visual effect barn door open
  1150.     Go to card id 16794
  1151.   End if
  1152.   ----------------------------------------------------------------------
  1153.   -- GRAPHICS
  1154.   ----------------------------------------------------------------------
  1155.   If it = 12 then
  1156.     Visual effect barn door open
  1157.     Go to card id 16898
  1158.   End if
  1159.   ----------------------------------------------------------------------
  1160.   -- IDEAS
  1161.   ----------------------------------------------------------------------
  1162.   If it = 13 then
  1163.     Visual effect barn door open
  1164.     Go to card id 17208
  1165.   End if
  1166.   ----------------------------------------------------------------------
  1167.   -- MUSIC \ SOUNDS
  1168.   ----------------------------------------------------------------------
  1169.   If it = 14 then
  1170.     Visual effect barn door open
  1171.     Go to card id 17559
  1172.   End if
  1173.   ----------------------------------------------------------------------
  1174.   -- SPREADSHEETS
  1175.   ----------------------------------------------------------------------
  1176.   If it = 15 then
  1177.     Visual effect barn door open
  1178.     Go to card id 17817
  1179.   End if
  1180.   ----------------------------------------------------------------------
  1181.   -- UTILITIES
  1182.   ----------------------------------------------------------------------
  1183.   If it = 16 then
  1184.     Visual effect barn door open
  1185.     Go to card id 18051
  1186.   End if
  1187.   ----------------------------------------------------------------------
  1188.   -- WORD PROCESSING
  1189.   ----------------------------------------------------------------------
  1190.   If it = 17 then
  1191.     Visual effect barn door open
  1192.     Go to card id 18344
  1193.   End if
  1194. End MouseDown
  1195.  
  1196.  
  1197.  
  1198.  
  1199. -- part 114 (field)
  1200. -- low flags: 80
  1201. -- high flags: 0007
  1202. -- rect: left=19 top=28 right=323 bottom=101
  1203. -- title width / last selected line: 0
  1204. -- icon id / first selected line: 0 / 0
  1205. -- text alignment: 0
  1206. -- font id: 3
  1207. -- text size: 12
  1208. -- style flags: 0
  1209. -- line height: 16
  1210. -- part name: List
  1211.  
  1212.  
  1213. -- part 116 (button)
  1214. -- low flags: 00
  1215. -- high flags: 2004
  1216. -- rect: left=38 top=234 right=271 bottom=91
  1217. -- title width / last selected line: 0
  1218. -- icon id / first selected line: 21060 / 21060
  1219. -- text alignment: 1
  1220. -- font id: 0
  1221. -- text size: 12
  1222. -- style flags: 0
  1223. -- line height: 16
  1224. -- part name: About
  1225. ----- HyperTalk script -----
  1226. On MouseUp
  1227.   Global Action
  1228.   If Action = "Abort" then
  1229.     Put "Launch" into action
  1230.     Exit MouseUp
  1231.   End if
  1232.   Beep
  1233.   Answer "You Have A Question About..." with "Portfolio" or "Buttons" or "Cancel"
  1234.   If it = "Buttons" then
  1235.     Visual effect barn door open
  1236.     Go to card Id 6641
  1237.     Exit MouseUp
  1238.   End if
  1239.   If it = "Cancel" then exit MouseUp
  1240.   DoMenu First
  1241.   Show card field 4
  1242.   Show button OK
  1243. End MouseUp
  1244.  
  1245.  
  1246.  
  1247. -- part 117 (button)
  1248. -- low flags: 00
  1249. -- high flags: 2004
  1250. -- rect: left=38 top=274 right=295 bottom=91
  1251. -- title width / last selected line: 0
  1252. -- icon id / first selected line: 6720 / 6720
  1253. -- text alignment: 1
  1254. -- font id: 0
  1255. -- text size: 12
  1256. -- style flags: 0
  1257. -- line height: 16
  1258. -- part name: Back
  1259. ----- HyperTalk script -----
  1260. On MouseUp
  1261.   Global Action
  1262.   If Action = "Abort" then
  1263.     Put "Launch" into action
  1264.     Exit MouseUp
  1265.   End if
  1266.   Visual effect barn door open
  1267.   DoMenu Back
  1268. End MouseUp
  1269.  
  1270.  
  1271.  
  1272. -- part 119 (button)
  1273. -- low flags: 00
  1274. -- high flags: 2000
  1275. -- rect: left=410 top=32 right=45 bottom=438
  1276. -- title width / last selected line: 0
  1277. -- icon id / first selected line: 0 / 0
  1278. -- text alignment: 1
  1279. -- font id: 0
  1280. -- text size: 12
  1281. -- style flags: 0
  1282. -- line height: 16
  1283. -- part name: Page Number
  1284. ----- HyperTalk script -----
  1285. On MouseUp
  1286.   Global Action
  1287.   If Action = "Abort" then
  1288.     Put "Launch" into action
  1289.     Exit MouseUp
  1290.   End if
  1291.   Ask "Change page number to:"
  1292.   If it is not empty then
  1293.     Put it into background field "Page:"
  1294.   End if
  1295. End MouseUp
  1296.  
  1297.